Fast Feed¶
FastFeed is a library that allows you to consume “feeds” atom or rss to be used in your applications.
FastFeed Status¶
Name | Badge | Name | Badge |
Build Status | Latest Stable | ||
Quality Score | Latest Stable | ||
Code Coverage | Total Downloads | ||
Insight | License | ||
Dependencies | ~ | ~ |
Features¶
- Consume any number of channels grouped by feeds.
- Extends FastFeed easily to support new formats or retrieve information added by other specifications
- Recover ordering information according to your preferences.
- Modular and extensible.
Easy to use¶
FastFeed is easy to use.
<?php
use FastFeed\Factory;
$fastFeed = Factory::create();
$fastFeed->addFeed('default', 'http://desarrolla2.com/feed');
$items = $fastFeed->fetch('default');
Highly customizable¶
You have a lot of options, read the docs for Parser, Aggregators and Processors. You have the perfect tool to manipulate all kinds of feeds.
Reference Guide¶
Cookbook¶
Not ready yet :(